All Questions
2 questions
1vote
2answers
2kviews
C++ Organizing classes for easy unit testing (but with some restrictions)
Mild pickle. I have a project which has components that are difficult to test/mock. It might look something like this: class Contenxt; class Server : public SomeOtherClass { public: ServerPlugin(...
0votes
2answers
879views
Characterization in Testing: Unit test or Functional test [duplicate]
So I'm trying to push for more automated testing in my company, which focus a lot on prototype and proof of concept systems. We currently use Google Test for unit testing. This tests specific test ...